home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / Adv.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-03-28  |  1.1 KB  |  34 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef Unit5H
  3. #define Unit5H
  4. //----------------------------------------------------------------------------
  5. #include <ComCtrls.hpp>
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <ExtCtrls.hpp>
  9. #include <Graphics.hpp>
  10. #include <StdCtrls.hpp>
  11. #include "NCTAUDIOEDITOR2Lib_OCX.h"
  12. //----------------------------------------------------------------------------
  13. class TfrmAdv : public TForm
  14. {
  15. __published:
  16.     TButton *btnClose;
  17.     TLabel *Label2;
  18.     TImage *Image2;
  19.     TGroupBox *gbOther;
  20.     TLabel *Label1;
  21.     void __fastcall FormShow(TObject *Sender);
  22. private:
  23. public:
  24.     bool m_Rec; 
  25.     virtual __fastcall TfrmAdv(TComponent* AOwner);
  26.     void __fastcall AdvClick(TObject *Sender);
  27.     void __fastcall AdvChange(TObject *Sender);
  28.     IAudioEditor2DevicePtr Dev;
  29. };
  30. //----------------------------------------------------------------------------
  31. extern PACKAGE TfrmAdv *frmAdv;
  32. //----------------------------------------------------------------------------
  33. #endif    
  34.